home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Screen Parts / SystemWindowScreenPart.h < prev    next >
Text File  |  1997-06-28  |  423b  |  25 lines

  1. // SystemWindowScreenPart.h
  2.  
  3. #ifndef SystemWindowScreenPart_h
  4. #define SystemWindowScreenPart_h
  5.  
  6. #ifndef ScreenPart_h
  7. #include "ScreenPart.h"
  8. #endif
  9.  
  10. class SystemWindowScreenPart: public ScreenPart
  11.   {
  12.     private:
  13.         WindowPtr window;
  14.     
  15.     public:
  16.         SystemWindowScreenPart( WindowPtr theWindow )
  17.           : window( theWindow )
  18.           {}
  19.         
  20.         virtual bool Active() const;
  21.         virtual void Click( const MouseDownEvent& ) const;
  22.   };
  23.  
  24. #endif
  25.